home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / preloaders / IPreloaderDisplay.as < prev    next >
Text File  |  2009-02-12  |  1KB  |  39 lines

  1. package mx.preloaders
  2. {
  3.    import flash.display.Sprite;
  4.    import flash.events.IEventDispatcher;
  5.    
  6.    public interface IPreloaderDisplay extends IEventDispatcher
  7.    {
  8.        
  9.       
  10.       function set backgroundAlpha(param1:Number) : void;
  11.       
  12.       function get stageHeight() : Number;
  13.       
  14.       function get stageWidth() : Number;
  15.       
  16.       function set backgroundColor(param1:uint) : void;
  17.       
  18.       function set preloader(param1:Sprite) : void;
  19.       
  20.       function get backgroundImage() : Object;
  21.       
  22.       function get backgroundSize() : String;
  23.       
  24.       function get backgroundAlpha() : Number;
  25.       
  26.       function set stageHeight(param1:Number) : void;
  27.       
  28.       function get backgroundColor() : uint;
  29.       
  30.       function set stageWidth(param1:Number) : void;
  31.       
  32.       function set backgroundImage(param1:Object) : void;
  33.       
  34.       function set backgroundSize(param1:String) : void;
  35.       
  36.       function initialize() : void;
  37.    }
  38. }
  39.